home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-06-23 | 228 b | 26 lines | [TEXT/MPCC] |
- // DemoDoc.cp
-
- #include "DemoDoc.h"
-
-
- DemoDoc::DemoDoc(
- LCommander *inSuper)
- {
- fNetPoint = nil;
- }
-
-
- DemoDoc::~DemoDoc()
- {
- delete fNetPoint;
- }
-
-
- void
- DemoDoc::SetNetPoint(
- NetPoint* inNewPoint)
- {
- fNetPoint = inNewPoint;
- }
-
-